home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / SIMPLE32._W_ < prev    next >
Text File  |  1997-05-22  |  785b  |  33 lines

  1. #
  2. # Watcom makefile for SIMPLE [Win32]
  3. # Requires WSC32.DLL & WSC32.LIB
  4. #
  5. # To use: "wmake -f simple32._w_"
  6. #
  7.  
  8. CCFLAGS = -w4 -zq -otexan -d2 -3s -bt=nt -mf -DWIN32
  9.  
  10. simple.exe : about.obj line.obj paint.obj simple.obj sioerror.obj &
  11.                simple.def wsc32.lib simple.res
  12.     wlink d all SYS nt_win op m libr wsc32.lib op maxe=25 op q op symf &
  13.           @simple32.lnk
  14.     wrc -q -ad simple.res simple.exe
  15.  
  16. about.obj : about.c
  17.     wcc386 about.c $(CCFLAGS)
  18.  
  19. line.obj : line.c
  20.     wcc386 line.c  $(CCFLAGS)
  21.  
  22. paint.obj : paint.c
  23.     wcc386 paint.c $(CCFLAGS)
  24.  
  25. simple.obj : simple.c
  26.     wcc386 simple.c $(CCFLAGS)
  27.  
  28. sioerror.obj : sioerror.c
  29.     wcc386 sioerror.c $(CCFLAGS)
  30.  
  31. simple.res : simple.rc
  32.     wrc simple.rc -bt=nt -q -ad -r -fo=simple.res
  33.